home *** CD-ROM | disk | FTP | other *** search
-
- #define mouseinclude /*so other modules can tell if we've been included*/
-
-
- typedef struct tymouserecord {
-
- boolean fldoubleclick;
-
- Point localpt;
-
- long mouseuptime;
-
- long mousedowntime;
-
- Point mouseuppoint;
-
- Point mousedownpoint;
-
- boolean fldoubleclickdisabled;
- } tymouserecord;
-
-
- extern tymouserecord mousestatus;
-
- typedef void (*tymousetrackcallback) (boolean);
-
- boolean mousetrack (Rect, tymousetrackcallback);
-
- boolean mousedoubleclick (Point);
-